home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_351 / pdc / libsrc.lzh / LibSrc / Misc / Makefile < prev    next >
Makefile  |  1990-04-07  |  1KB  |  44 lines

  1.  
  2. #  Libraries and headers for PDC release 3.3 (C) 1989 Lionel Hummel.
  3. #  PDC Software Distribution (C) 1989 Lionel Hummel and Paul Petersen.
  4. #  PDC I/O Library (C) 1987 by J.A. Lydiatt.
  5. #  This code is freely redistributable upon the conditions that this 
  6. #  notice remains intact and that modified versions of this file not
  7. #  be included as part of the PDC Software Distribution without the
  8. #  express consent of the copyright holders.  No warrantee of any
  9. #  kind is provided with this code.  For further information, contact:
  10. #   PDC Software Distribution    Internet:                     BIX:
  11. #   P.O. Box 4006             or hummel@cs.uiuc.edu            lhummel
  12. #   Urbana, IL  61801-8801       petersen@uicsrd.csrd.uiuc.edu
  13.  
  14. # Makefile to generate miscellaneous functions
  15.  
  16. CC    = ccx
  17. CFLAGS    = +INDU:include.h
  18. AFLAGS    = -Wa-Ii:
  19. LIBR    = libr
  20. ADD    = -a
  21. INSERT = -r
  22. SORT    = -x
  23.  
  24. SRC    = getopt.c time.c
  25. OBJ    = getopt.o time.o
  26.  
  27. .SUFFIXES: .c .asm .o .lib
  28.  
  29. .asm.o:
  30.     $(CC) $(AFLAGS) -c $*.asm
  31.  
  32. .c.o: 
  33.     $(CC) $(CFLAGS) -c $*.c
  34.  
  35. all:    $(OBJ) collect
  36.  
  37. collect: $(OBJ)
  38.     $(LIBR) $(INSERT) $(SORT) PDC:lib/pdc.lib $(OBJ)
  39.  
  40. clean:
  41.     delete \#?.o
  42.